home *** CD-ROM | disk | FTP | other *** search
-
- #include "windows.h"
- #include "mledit.h"
-
- /* test dialog box to show it working.... */
- MLEDITBOX DIALOG LOADONCALL MOVEABLE DISCARDABLE 9, 26, 148, 75
- CAPTION "Multiline Edit Test"
- STYLE WS_BORDER | WS_CAPTION | WS_DLGFRAME | WS_SYSMENU | WS_VISIBLE | WS_POPUP
- BEGIN
- CONTROL "OK", 1, "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 57, 55, 32, 14
- CONTROL "", IDC_MLEDIT, "edit", ES_LEFT | ES_MULTILINE | WS_BORDER | WS_VSCROLL | WS_TABSTOP | WS_CHILD, 10, 6, 131, 46
- END
-
-
-
-